sim_bimtek/
├── app/
│   ├── Exports/                # File export laporan (Excel/PDF)
│   ├── Http/
│   │   └── Controllers/
│   │       ├── MateriController.php
│   │       └── Panitia/        # Manajemen Kegiatan & Absensi
│   │           └── MateriController.php
├── config/                     # Konfigurasi SMTP & Keamanan
│   └── database.php
├── public/
│   ├── assets/                 # CSS, JS, Images UI Pemerintah
│   │   ├── css/
│   │   │   └── style-global.css
│   │   └── img/
│   │       ├── galeri/
│   │       ├── materi/
│   │       ├── background.png
│   │       ├── legalitas.png
│   │       └── logo.png
│   ├── admin_dashboard.php
│   ├── arsip_pendaftaran.php
│   ├── auth_process.php
│   ├── cek_status.php
│   ├── cetak_sertifikat.php
│   ├── detail_jadwal.php
│   ├── detail_materi.php
│   ├── fix_login.php
│   ├── galeri.php
│   ├── generate_sertifikat.php
│   ├── hapus_materi.php
│   ├── index.php
│   ├── jadwal.php
│   ├── kegiatan.php
│   ├── kegiatan_edit.php
│   ├── kelola_galeri.php
│   ├── kelola_pendaftaran.php
│   ├── kemitraan.php
│   ├── login.php
│   ├── logout.php
│   ├── materi.php
│   ├── materi_peserta.php
│   ├── mitra_dashboard.php
│   ├── pendaftaran.php
│   ├── pengguna.php
│   ├── proses_daftar.php
│   ├── proses_hapus_pendaftar.php
│   ├── proses_hapus_sertifikat.php
│   ├── proses_verifikasi.php
│   ├── semua_materi.php
│   ├── sertifikat.php
│   ├── tambah_pendaftaran.php
│   ├── tentang_kami.php
│   ├── verifikasi_peserta.php
│   ├── verifikasi_sertifikat.php
│   └── qrcodes/                # Generate QR Code Absensi harian
└── resources/
    └── views/
        ├── components/         
        │   └── sidebar.php
        └── layouts/            # Template utama (Master Layout)
            ├── footer.php
            ├── main.php
            └── navbar.php
